home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 February / Electronic Clipper 1998-02.iso / Idea Source® / MAIN.DIR / 00026_Script_rollover < prev    next >
Text File  |  1997-12-22  |  324b  |  18 lines

  1. on exitFrame
  2.   go the frame
  3.   
  4.   repeat with n=3 to 8
  5.     if rollover(n) then
  6.       set the visible of sprite n to false
  7.       updatestage
  8.     end if
  9.   end repeat
  10.   
  11.   repeat with n=3 to 8
  12.     if not rollover(n) then
  13.       set the visible of sprite n to true
  14.       updatestage
  15.     end if
  16.   end repeat
  17.   
  18. end